673f7d886fe85e1a1f143658a07b3a1af601da99,src/main/java/org/jboss/aesh/console/man/AeshFileDisplayer.java,AeshFileDisplayer,clearBottomLine,#,386

Before Change


    public void clearBottomLine() throws IOException {
        getShell().out().print(Buffer.printAnsi("0G"));
        getShell().out().print(Buffer.printAnsi("2K"));
        getShell().out().flush();
    }

    public boolean isAtBottom() {

After Change



    public void clearBottomLine() throws IOException {
        getShell().write(ANSI.printAnsi("0G"));
        getShell().write(ANSI.printAnsi("2K"));
    }

    public boolean isAtBottom() {